home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / bin / bttrack.bittorrent < prev    next >
Encoding:
Text File  |  2007-02-19  |  191 b   |  11 lines

  1. #! /usr/bin/python
  2.  
  3. # Written by Bram Cohen
  4. # see LICENSE.txt for license information
  5.  
  6. from sys import argv
  7. from BitTorrent.track import track
  8.  
  9. if __name__ == '__main__':
  10.     track(argv[1:])
  11.